home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
MacWorld 1998 March
/
Macworld (1998-03) (Disk 1).dmg
/
Shareware World
/
Info
/
For Developers
/
SpotCheck 1.0.1
/
SpotCheck 68K
/
SpotCheck 68K.rsrc
/
STR#_22000.txt
< prev
next >
Wrap
Text File
|
1997-12-31
|
2KB
|
665 lines
synchronized(…) {…}
{ … }
throw anException
catch (…)
try {…} catch…
; // empty
return
break
continue
a_statement_label
for (…;…;…) {…}
do {…} while (…)
while (…) {…}
default
case aConstant
switch (…) {case…}
if (…) {…}
aLabel: …
transient
threadsafe
synchronized
static
native
abstract
final
protected
private
public
static {…}
{ expression, … }
aType thisVariable = …
aType thisConstant = …
aType thisField = …
thisClassConstructor(…)
aType thisMethod(…)
aType thisMethod(…) {…}
aType[]
byte
boolean
double
float
long
short
char
void
int
aClassOrInterface
aPackage .aClassOrInterface
true
false
null
aFieldOrVariable
"aString"
'c'
0x1EF4
0777
6.2e23
42
aType .class
OuterClass .this
super
this
(…)
aVariable --
aVariable ++
anObject .aField
aClass(…)
anObject .aMethod(…)
anArray[…]
! expression
~ expression
- expression
-- aVariable
++ aVariable
aType[ size ]
aType[ size ][]
new aType[…]
new aClass (…)
( aType ) expression
expression % expression
expression / expression
expression * expression
expression - expression
expression + expression
expression >>> expression
expression >> expression
expression << expression
anObject instanceof aType
expression >= expression
expression <= expression
expression > expression
expression < expression
expression != expression
expression == expression
expression & expression
expression ^ expression
expression | expression
expression && expression
expression || expression
testExpr ? ifTrueValue : ifFalseValue
|=
^=
&=
>>>=
>>=
<<=
-=
+=
%=
/=
*=
=
aVariable = aValue
implements anInterface, …
extends anInterface, …
thisClassOrInterface
extends aClass
interface thisInterface {…}
class thisClass {…}
aPackage .*
aPackage .anotherPkg
aPackage
thisPackage
parentPackage .thisPackage
package MyPackage
package <default>
/* comment */
// comment